keystream 1.0.0

Cryptographic keystream traits
Documentation
  • Coverage
  • 85.71%
    6 out of 7 items documented0 out of 6 items with examples
  • Size
  • Source code size: 14.65 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 335.35 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • Documentation
  • PeterReid/keystream
    1 1 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • PeterReid
In cryptography, keystreams are sequences of bytes that can be XORed with a plaintext to create a ciphertext or XORed with a ciphertext to recover the plaintext. A good keystream is nearly impossible to distinguish from random stream of bytes, which makes the ciphertext appear similarly random. This crate contains traits that that encapsulate the behavior of keystreams, which allows cryptographic operations that depend on keystreams be generic over which particular keystream they use.